home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Updates / PowerPC / jpeg2ps / descrip.mms < prev    next >
Text File  |  2000-05-16  |  979b  |  45 lines

  1. # Makefile for jpeg2ps
  2. # (C) Thomas Merz 1994-1999
  3. # Unsupported VMS support file for mms, initially provided by
  4. # Rolf Niepraschk (niepraschk@ptb.de )
  5.  
  6. #
  7. ----------------------------------------------------------------------------
  8. # VMS version
  9. # Start with "mms /ignore=warn"
  10. #
  11. # throw out /DEFINE=A4 if you want letter format as default size
  12. # throw out -DA4 if you want letter format as default size
  13. # use /DEFINE=KNR for Kernighan/Ritchie compilers
  14.  
  15. CC=cc
  16. CCOPT= /DEFINE=A4/PREFIX=ALL
  17. LDOPT=
  18. OBJ=OBJ
  19. EXE=.EXE
  20. RM=rm
  21.  
  22. .c.$(OBJ) :
  23.     $(CC) $(CCOPT) $*.c
  24.  
  25. all :    jpeg2ps$(EXE)
  26.     @ !
  27.  
  28. jpeg2ps$(EXE) :    jpeg2ps.$(OBJ) readjpeg.$(OBJ) asc85ec.$(OBJ)
  29. getopt.$(OBJ)
  30.         LINK $(LDOPT) /EXE=$@ $+
  31.         
  32.  
  33. clean :
  34.         @ $ IF F$SEARCH("*.$(OBJ)",).NES."" THEN  DEL/LOG *.$(OBJ);*
  35.         @ $ IF F$SEARCH("jpeg2ps$(EXE)",).NES."" THEN  DEL/LOG
  36. jpeg2ps$(EXE);*
  37.  
  38. jpeg2ps.$(OBJ) :        jpeg2ps.c psimage.h
  39.  
  40. readjpeg.$(OBJ) :    readjpeg.c psimage.h
  41.  
  42. asc85ec.$(OBJ) :        asc85ec.c
  43.  
  44. getopt.$(OBJ) :        getopt.c
  45.